diff options
Diffstat (limited to 'pages/en/manga/read/[...params].js')
| -rw-r--r-- | pages/en/manga/read/[...params].js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pages/en/manga/read/[...params].js b/pages/en/manga/read/[...params].js index faebcd6..b71f8a7 100644 --- a/pages/en/manga/read/[...params].js +++ b/pages/en/manga/read/[...params].js @@ -41,8 +41,6 @@ export default function Read({ data, currentId, sessions }) { const router = useRouter(); - // console.log(cookies); - useEffect(() => { hasRun.current = false; }, [currentId]); @@ -212,8 +210,9 @@ export default function Read({ data, currentId, sessions }) { <RightBar id={info?.id} hasRun={hasRun} + error={data?.error} session={sessions} - data={chapter} + data={data} currentId={currentId} currentChapter={currentChapter} layout={layout} |